Description
Used to display features using one symbol.
Diagram
Overview
|
|
refscale optional xs:string
Reference scale to display the TRUETYPEMARKERSYMBOL or SIMPLEMARKERSYMBOL at the specified fontsize using a relative scale such as 1:24000. TRUETYPEMARKERSYMBOLs and SIMPLEMARKERSYMBOLs are scaled relative to the refscale as the map is zoomed in or out.
|
|
rotationfield optional xs:string
The field in the table that contains the angle of rotation for a TRUETYPEMARKERSYMBOL.
|
|
rotationtype optional Restriction of xs:string
Three methods of calculating angles are available: 1)"arithmetic", An angle of 0 is east, and angles are calculated counterclockwise from east. 2)"counterclockwise", An angle of 0 is north, and angles are calculated counterclockwise from north. 3)"geographic", An angle of 0 is north, and angles are calculated clockwise from north.
|
|
visible optional Restriction of xs:string
|
|
Sequence
|
COMPLEXLINESYMBOL
Used to symbolize line features. Provides additional symbology options beyond SIMPLELINESYMBOL.
|
|
COMPLEXPOLYGONSYMBOL
Used to symbolize polygon features. Provides additional symbology options beyond SIMPLEPOLYGONSYMBOL.
|
|
GROUPSYMBOL
Used to symbolize features with multiple symbols acting as a single symbol (e.g., a freeway line symbol consists of a group of 3 line symbols).
|
|
RASTERFILLSYMBOL
Symbolizes polygon features using the specified image as a fill symbol.
|
|
SIMPLEMARKERSYMBOL
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
|
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
refscale | xs:string | optional | | | Reference scale to display the TRUETYPEMARKERSYMBOL or SIMPLEMARKERSYMBOL at the specified fontsize using a relative scale such as 1:24000. TRUETYPEMARKERSYMBOLs and SIMPLEMARKERSYMBOLs are scaled relative to the refscale as the map is zoomed in or out. |
rotationfield | xs:string | optional | | | The field in the table that contains the angle of rotation for a TRUETYPEMARKERSYMBOL. |
rotationtype | Restriction of xs:string | optional | | | Three methods of calculating angles are available: 1)"arithmetic", An angle of 0 is east, and angles are calculated counterclockwise from east. 2)"counterclockwise", An angle of 0 is north, and angles are calculated counterclockwise from north. 3)"geographic", An angle of 0 is north, and angles are calculated clockwise from north. |
visible | Restriction of xs:string | optional | false | | |
Remarks
Examples
Restrictions
One symbol must be specified. Only one is allowed.
Source
<xs:element name="SIMPLERENDERER" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType>
<xs:sequence>
<xs:element ref="COMPLEXLINESYMBOL" />
<xs:element ref="COMPLEXPOLYGONSYMBOL" />
<xs:element ref="GROUPSYMBOL" />
<xs:element ref="RASTERFILLSYMBOL" />
<xs:element ref="RASTERMARKERSYMBOL" />
<xs:element ref="SIMPLELINESYMBOL" />
<xs:element ref="SIMPLEMARKERSYMBOL" />
<xs:element ref="SIMPLEPOLYGONSYMBOL" />
<xs:element ref="TRUETYPEMARKERSYMBOL" />
</xs:sequence>
<xs:attribute ref="refscale" />
<xs:attribute ref="rotationfield" />
<xs:attribute default="" ref="rotationtype" />
<xs:attribute ref="visible" />
</xs:complexType>
</xs:element>
|
See Also